iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 23
0
Modern Web

網站前端後端與API系列 第 23

NodeJS的動態網站概念-5

  • 分享至 

  • xImage
  •  

我們試試看開一個新的ejs
在views的目錄下,新增:
index2.ejs
增加以下程式碼

<!DOCTYPE html>
<html>
  <head>
    <title><%= title %></title>
    <link rel='stylesheet' href='/stylesheets/style.css' />
  </head>
  <body>
    <h1>第二個頁面!</h1>
    <h1><%= title %></h1>
    <p>Welcome to <%= ironMan30 %><%= theTweenty %></p>
    <h2><%= haha %></h2>

  </script>
</html>

存檔,我們回到index.js,更改/30days後面的路徑:

router.get('/30days', function(req, res, next) {
  res.render('index2', { 
  	title: 'Express',
  	haha: '哈哈',
  	ironMan30: '30天鐵人賽',
  	theTweenty: '第20天'
  });
});

我們把/30days路徑要求,回應的頁面改成index2了,我們存檔重新開啟伺服器,打開http://localhost:3000/30days

https://ithelp.ithome.com.tw/upload/images/20191008/20113153ufN4ucAc2u.png

多分頁的動態網站,我們已經完成了。


上一篇
NodeJS的動態網站概念-4
下一篇
NodeJS的動態網站概念-6
系列文
網站前端後端與API30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言